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

Side by Side Diff: chrome/common/extensions/api/extension_action/page_action_handler.cc

Issue 450053003: Use a qualified path for grit includes in various chrome/ directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove webkit strings that no longer exist Created 6 years, 4 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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/common/extensions/api/extension_action/page_action_handler.h" 5 #include "chrome/common/extensions/api/extension_action/page_action_handler.h"
6 6
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 #include "base/values.h" 8 #include "base/values.h"
9 #include "chrome/common/extensions/extension_constants.h" 9 #include "chrome/common/extensions/extension_constants.h"
10 #include "chrome/grit/generated_resources.h"
10 #include "extensions/common/extension.h" 11 #include "extensions/common/extension.h"
11 #include "extensions/common/file_util.h" 12 #include "extensions/common/file_util.h"
12 #include "extensions/common/manifest_constants.h" 13 #include "extensions/common/manifest_constants.h"
13 #include "grit/generated_resources.h"
14 14
15 namespace extensions { 15 namespace extensions {
16 16
17 namespace keys = manifest_keys; 17 namespace keys = manifest_keys;
18 namespace errors = manifest_errors; 18 namespace errors = manifest_errors;
19 19
20 PageActionHandler::PageActionHandler() { 20 PageActionHandler::PageActionHandler() {
21 } 21 }
22 22
23 PageActionHandler::~PageActionHandler() { 23 PageActionHandler::~PageActionHandler() {
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 } 90 }
91 91
92 const std::vector<std::string> PageActionHandler::Keys() const { 92 const std::vector<std::string> PageActionHandler::Keys() const {
93 std::vector<std::string> keys; 93 std::vector<std::string> keys;
94 keys.push_back(keys::kPageAction); 94 keys.push_back(keys::kPageAction);
95 keys.push_back(keys::kPageActions); 95 keys.push_back(keys::kPageActions);
96 return keys; 96 return keys;
97 } 97 }
98 98
99 } // namespace extensions 99 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698