Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Side by Side Diff: chrome/browser/ui/webui/chromeos/login/kiosk_enable_screen_handler.cc

Issue 498773003: Use a qualified path for chromium_strings, google_chrome_strings, and generated_resources. (part 2 … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/webui/chromeos/login/kiosk_enable_screen_handler.h" 5 #include "chrome/browser/ui/webui/chromeos/login/kiosk_enable_screen_handler.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "chrome/browser/browser_process.h" 9 #include "chrome/browser/browser_process.h"
10 #include "chrome/browser/chrome_notification_types.h" 10 #include "chrome/browser/chrome_notification_types.h"
11 #include "chrome/common/chrome_switches.h" 11 #include "chrome/common/chrome_switches.h"
12 #include "chrome/grit/generated_resources.h"
12 #include "content/public/browser/notification_details.h" 13 #include "content/public/browser/notification_details.h"
13 #include "content/public/browser/notification_service.h" 14 #include "content/public/browser/notification_service.h"
14 #include "grit/browser_resources.h" 15 #include "grit/browser_resources.h"
15 #include "grit/generated_resources.h"
16 16
17 namespace { 17 namespace {
18 18
19 const char kJsScreenPath[] = "login.KioskEnableScreen"; 19 const char kJsScreenPath[] = "login.KioskEnableScreen";
20 20
21 // Reset screen id. 21 // Reset screen id.
22 const char kKioskEnableScreen[] = "kiosk-enable"; 22 const char kKioskEnableScreen[] = "kiosk-enable";
23 23
24 } // namespace 24 } // namespace
25 25
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 CallJS("onCompleted", success); 138 CallJS("onCompleted", success);
139 if (success) { 139 if (success) {
140 content::NotificationService::current()->Notify( 140 content::NotificationService::current()->Notify(
141 chrome::NOTIFICATION_KIOSK_ENABLED, 141 chrome::NOTIFICATION_KIOSK_ENABLED,
142 content::NotificationService::AllSources(), 142 content::NotificationService::AllSources(),
143 content::NotificationService::NoDetails()); 143 content::NotificationService::NoDetails());
144 } 144 }
145 } 145 }
146 146
147 } // namespace chromeos 147 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698