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

Side by Side Diff: chrome/browser/extensions/api/command_line_private/command_line_private_api.h

Issue 14027005: Implement Command Line Private extension API (Closed) Base URL: https://src.chromium.org/svn/trunk/src/
Patch Set: rebase Created 7 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/extensions/api/command_line_private/command_line_private_api.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_EXTENSIONS_API_COMMAND_LINE_PRIVATE_COMMAND_LINE_PRIVATE_ API_H__
6 #define CHROME_BROWSER_EXTENSIONS_API_COMMAND_LINE_PRIVATE_COMMAND_LINE_PRIVATE_ API_H__
7
8 #include "chrome/browser/extensions/extension_function.h"
9
10 namespace extensions {
11
12 class CommandLinePrivateHasSwitchFunction : public SyncExtensionFunction {
13 DECLARE_EXTENSION_FUNCTION("commandLinePrivate.hasSwitch",
14 COMMANDLINEPRIVATE_HASSWITCH)
15 protected:
16 virtual ~CommandLinePrivateHasSwitchFunction() {}
17
18 // ExtensionFunction:
19 virtual bool RunImpl() OVERRIDE;
20 };
21
22 } // namespace extensions
23
24 #endif // CHROME_BROWSER_EXTENSIONS_API_COMMAND_LINE_PRIVATE_COMMAND_LINE_PRIVA TE_API_H__
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/api/command_line_private/command_line_private_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698