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

Side by Side Diff: chrome/browser/devtools/devtools_toggle_action.h

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_DEVTOOLS_DEVTOOLS_TOGGLE_ACTION_H_ 5 #ifndef CHROME_BROWSER_DEVTOOLS_DEVTOOLS_TOGGLE_ACTION_H_
6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_TOGGLE_ACTION_H_ 6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_TOGGLE_ACTION_H_
7 7
8 #include "base/basictypes.h" 8 #include <stddef.h>
9
9 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
10 #include "base/strings/string16.h" 11 #include "base/strings/string16.h"
11 12
12 struct DevToolsToggleAction { 13 struct DevToolsToggleAction {
13 public: 14 public:
14 enum Type { 15 enum Type {
15 kShow, 16 kShow,
16 kShowConsole, 17 kShowConsole,
17 kShowSecurityPanel, 18 kShowSecurityPanel,
18 kInspect, 19 kInspect,
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 explicit DevToolsToggleAction(RevealParams* reveal_params); 55 explicit DevToolsToggleAction(RevealParams* reveal_params);
55 56
56 // The type of action. 57 // The type of action.
57 Type type_; 58 Type type_;
58 59
59 // Additional parameters for the Reveal action; NULL if of any other type. 60 // Additional parameters for the Reveal action; NULL if of any other type.
60 scoped_ptr<RevealParams> params_; 61 scoped_ptr<RevealParams> params_;
61 }; 62 };
62 63
63 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_TOGGLE_ACTION_H_ 64 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_TOGGLE_ACTION_H_
OLDNEW
« no previous file with comments | « chrome/browser/devtools/devtools_targets_ui.h ('k') | chrome/browser/devtools/devtools_ui_bindings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698