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

Side by Side Diff: chrome/renderer/extensions/dispatcher.cc

Issue 11817030: Update some #includes in chrome/renderer/extensions/ for headers in the new Platform directory (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 11 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) 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 #include "chrome/renderer/extensions/dispatcher.h" 5 #include "chrome/renderer/extensions/dispatcher.h"
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/string_piece.h" 10 #include "base/string_piece.h"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 #include "chrome/renderer/extensions/tab_finder.h" 47 #include "chrome/renderer/extensions/tab_finder.h"
48 #include "chrome/renderer/extensions/tabs_custom_bindings.h" 48 #include "chrome/renderer/extensions/tabs_custom_bindings.h"
49 #include "chrome/renderer/extensions/tts_custom_bindings.h" 49 #include "chrome/renderer/extensions/tts_custom_bindings.h"
50 #include "chrome/renderer/extensions/user_script_slave.h" 50 #include "chrome/renderer/extensions/user_script_slave.h"
51 #include "chrome/renderer/extensions/web_request_custom_bindings.h" 51 #include "chrome/renderer/extensions/web_request_custom_bindings.h"
52 #include "chrome/renderer/extensions/webstore_bindings.h" 52 #include "chrome/renderer/extensions/webstore_bindings.h"
53 #include "chrome/renderer/resource_bundle_source_map.h" 53 #include "chrome/renderer/resource_bundle_source_map.h"
54 #include "content/public/renderer/render_thread.h" 54 #include "content/public/renderer/render_thread.h"
55 #include "content/public/renderer/render_view.h" 55 #include "content/public/renderer/render_view.h"
56 #include "grit/renderer_resources.h" 56 #include "grit/renderer_resources.h"
57 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h"
58 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h"
57 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" 59 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h"
58 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" 60 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
59 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" 61 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
60 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScopedUserGesture. h" 62 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScopedUserGesture. h"
61 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h" 63 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h"
62 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" 64 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
63 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
64 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLReques t.h"
65 #include "ui/base/layout.h" 65 #include "ui/base/layout.h"
66 #include "ui/base/resource/resource_bundle.h" 66 #include "ui/base/resource/resource_bundle.h"
67 #include "v8/include/v8.h" 67 #include "v8/include/v8.h"
68 68
69 using WebKit::WebDataSource; 69 using WebKit::WebDataSource;
70 using WebKit::WebDocument; 70 using WebKit::WebDocument;
71 using WebKit::WebFrame; 71 using WebKit::WebFrame;
72 using WebKit::WebScopedUserGesture; 72 using WebKit::WebScopedUserGesture;
73 using WebKit::WebSecurityPolicy; 73 using WebKit::WebSecurityPolicy;
74 using WebKit::WebString; 74 using WebKit::WebString;
(...skipping 1055 matching lines...) Expand 10 before | Expand all | Expand 10 after
1130 std::string error_msg = base::StringPrintf(kMessage, function_name.c_str()); 1130 std::string error_msg = base::StringPrintf(kMessage, function_name.c_str());
1131 v8::ThrowException( 1131 v8::ThrowException(
1132 v8::Exception::Error(v8::String::New(error_msg.c_str()))); 1132 v8::Exception::Error(v8::String::New(error_msg.c_str())));
1133 return false; 1133 return false;
1134 } 1134 }
1135 1135
1136 return true; 1136 return true;
1137 } 1137 }
1138 1138
1139 } // namespace extensions 1139 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/renderer/extensions/chrome_v8_context_set.cc ('k') | chrome/renderer/extensions/event_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698