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

Side by Side Diff: chrome/renderer/extensions/app_bindings.h

Issue 1548153002: Switch to standard integer types in chrome/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // The AppObjectExtension is a v8 extension that creates an object 5 // The AppObjectExtension is a v8 extension that creates an object
6 // at window.chrome.app. This object allows javascript to get details 6 // at window.chrome.app. This object allows javascript to get details
7 // on the app state of the page. 7 // on the app state of the page.
8 // The read-only property app.isInstalled is true if the current page is 8 // The read-only property app.isInstalled is true if the current page is
9 // within the extent of an installed, enabled app. 9 // within the extent of an installed, enabled app.
10 10
11 #ifndef CHROME_RENDERER_EXTENSIONS_APP_BINDINGS_H_ 11 #ifndef CHROME_RENDERER_EXTENSIONS_APP_BINDINGS_H_
12 #define CHROME_RENDERER_EXTENSIONS_APP_BINDINGS_H_ 12 #define CHROME_RENDERER_EXTENSIONS_APP_BINDINGS_H_
13 13
14 #include "base/compiler_specific.h" 14 #include "base/compiler_specific.h"
15 #include "base/macros.h"
15 #include "chrome/renderer/extensions/chrome_v8_extension_handler.h" 16 #include "chrome/renderer/extensions/chrome_v8_extension_handler.h"
16 #include "extensions/renderer/object_backed_native_handler.h" 17 #include "extensions/renderer/object_backed_native_handler.h"
17 #include "third_party/WebKit/public/web/WebFrame.h" 18 #include "third_party/WebKit/public/web/WebFrame.h"
18 19
19 namespace extensions { 20 namespace extensions {
20 class Dispatcher; 21 class Dispatcher;
21 22
22 // Implements the chrome.app JavaScript object. 23 // Implements the chrome.app JavaScript object.
23 // 24 //
24 // TODO(aa): Add unit testing for this class. 25 // TODO(aa): Add unit testing for this class.
(...skipping 18 matching lines...) Expand all
43 44
44 // Dispatcher handle. Not owned. 45 // Dispatcher handle. Not owned.
45 Dispatcher* dispatcher_; 46 Dispatcher* dispatcher_;
46 47
47 DISALLOW_COPY_AND_ASSIGN(AppBindings); 48 DISALLOW_COPY_AND_ASSIGN(AppBindings);
48 }; 49 };
49 50
50 } // namespace extensions 51 } // namespace extensions
51 52
52 #endif // CHROME_RENDERER_EXTENSIONS_APP_BINDINGS_H_ 53 #endif // CHROME_RENDERER_EXTENSIONS_APP_BINDINGS_H_
OLDNEW
« no previous file with comments | « chrome/renderer/content_settings_observer_browsertest.cc ('k') | chrome/renderer/extensions/app_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698