Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / tools / android / memconsumer / java / src / org / chromium / memconsumer / ResidentService.java
index e40fbfe..45e0eb8 100644 (file)
@@ -38,14 +38,14 @@ public class ResidentService extends Service {
             Intent notificationIntent = new Intent(this, MemConsumer.class);
             notificationIntent.setAction(MemConsumer.NOTIFICATION_ACTION);
             PendingIntent pendingIntent =
-                PendingIntent.getActivity(this, 0, notificationIntent, 0);
+                    PendingIntent.getActivity(this, 0, notificationIntent, 0);
             Notification notification =
-                new Notification.Builder(getApplicationContext()).
-                    setContentTitle("MC running (" + memory + "Mb)").
-                    setSmallIcon(R.drawable.notification_icon).
-                    setDeleteIntent(pendingIntent).
-                    setContentIntent(pendingIntent).
-                    build();
+                    new Notification.Builder(getApplicationContext())
+                            .setContentTitle("MC running (" + memory + "Mb)")
+                            .setSmallIcon(R.drawable.notification_icon)
+                            .setDeleteIntent(pendingIntent)
+                            .setContentIntent(pendingIntent)
+                            .build();
             startForeground(RESIDENT_NOTIFICATION_ID, notification);
             mIsInForeground = true;
         }