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

Side by Side Diff: chrome/browser/extensions/api/guest_view/guest_view_internal_api.h

Issue 299753011: Move allocate instance id to chrome/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: HasPermission function moved Created 6 years, 6 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
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_EXTENSIONS_API_GUEST_VIEW_GUEST_VIEW_INTERNAL_API_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_GUEST_VIEW_GUEST_VIEW_INTERNAL_API_H_
7
8 #include "extensions/browser/extension_function.h"
9
10 namespace extensions {
11
12 class GuestViewInternalAllocateInstanceIdFunction
13 : public AsyncExtensionFunction {
14 public:
15 DECLARE_EXTENSION_FUNCTION("guestViewInternal.allocateInstanceId",
16 GUESTVIEWINTERNAL_ALLOCATEINSTANCEID);
17 GuestViewInternalAllocateInstanceIdFunction();
18
19 protected:
20 virtual ~GuestViewInternalAllocateInstanceIdFunction() {}
21 virtual bool RunAsync() OVERRIDE FINAL;
22
23 private:
24 DISALLOW_COPY_AND_ASSIGN(GuestViewInternalAllocateInstanceIdFunction);
25 };
26
27 } // namespace extensions
28
29 #endif // CHROME_BROWSER_EXTENSIONS_API_GUEST_VIEW_GUEST_VIEW_INTERNAL_API_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/guest_view/OWNERS ('k') | chrome/browser/extensions/api/guest_view/guest_view_internal_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698